home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
STraTOS 1997 April & May
/
STraTOS 1 - 1997 April & May.iso
/
CD01
/
GNU_KIT
/
DISK9.ZIP
/
src
/
mint110
/
cookie.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-08-16
|
297 b
|
21 lines
/* header file for dealing with the cookie jar */
#ifndef _COOKIE_H
#define _COOKIE_H
union clong {
char aschar[4];
long aslong;
};
struct cookie {
union clong tag;
long value;
};
typedef struct cookie COOKIE;
#define CJAR ((COOKIE **) 0x5a0L)
#endif /* _COOKIE_H */